*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

a{
    text-decoration: underline;
    color: #333;
}

a:hover{
    color: blueviolet;
}

.container {
    display: flex;
    width: 80%;
    max-width: 1000px;
    height: 100%;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

.left{
    width: 30%;
    background-color:#e0e0e0;
   text-align: center;
   height: auto;
   padding: 20px 0;
}

.left-section{
    text-align: left;
}

.part-1,.part-2{
    margin: 20px;
}

.left h1 {
    font-size: 24px;
    font-weight: bold;
}

.h1-span{
    color: #ff6600;
}


.profile-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.left-section hr{
    margin: 5px 0;
}

.left-section h2 {
    margin-top: 10px;
}

.left-section ul{
    list-style: none;
    padding: 10px;
}

.right{
    width: 70%;
    padding: 30px; 
   }

.right-section{
    margin: 20px;
}

.right-section p{
    margin: 10px;
}

.right-section h2{
    margin-top: 20px;
}

.skills-ul{
    display: grid;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 10px;
            margin-top: 5px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left, .right {
        width: auto;
    }
    .right {
        height: auto;
    }

    .left {
        height: auto;
    }
    .part-1{
        padding: 30px;
    }

    .part-2{
        padding: 30px;
    }
}
